/* .bg-[#0670BD]{
	background-color: #10AC84 !important;
}
.text-[#ec1c24]{
	color: #10AC84 
} */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&family=Roboto&display=swap');
body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
}

.text-shadow {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.74);
}

/* footer{
	background-color: #25517A;
} */
.tab-trigger {
	transition: background-color 0.3s ease;
}

.tab-trigger:hover {
	background-color: #10ac84;
	color: white;
}

.tab-trigger.active {
	background-color: #10ac84;
	font-weight: bold;
	color: white;
}
.calendar {
	margin: 20px auto;
	max-width: 600px;
}
.calendar table {
	width: 100%;
}
.calendar th {
	text-align: center;
	font-weight: bold;
}
.calendar td {
	text-align: center;
}
.prev-month,
.next-month {
	cursor: pointer;
}
.current-month {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.gallery {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}

.gallery-image {
	margin: 5px;
	overflow: hidden;
	transition: transform 0.5s;
}

.gallery-image:hover {
	cursor: pointer;
	transform: scale(1.1);
}

.image {
	width: 100%;
	height: 100%;
	transition: 1s;
}

.sold {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
}
.sold {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ff0000; /* the main color  */
}
.rented {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
}
.rented {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ff0000; /* the main color  */
}

.suspended {
	font-size: 28px;
	font-weight: bold;
	color: #191919;
}
.suspended {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ffea00; /* the main color  */
}
.reserved {
	font-size: 28px;
	font-weight: bold;
	color: #191919;
}
.reserved {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ffea00; /* the main color  */
}

/* popup */

.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 80%;
	max-width: 1600px;
	height: 90vh;
	max-height: 800px;
	background: rgba(0, 0, 0, 0.75);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 5;
	overflow: hidden;
	transition: 1s;
	opacity: 0;
}

.popup.active {
	display: flex;
	transition: display 3s;
	transform: translate(-50%, -50%) scale(0);
}

.popup.active {
	width: 100%;
	height: 100%;
	z-index: 9999;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
	opacity: 1;
	transition: opacity 0.5s;
	transition-delay: 1s;
}

.top-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #000;
	color: #fff;
	text-align: center;
	line-height: 50px;
	font-weight: 300;
}

.image-name {
	opacity: 0;
}

.close-btn {
	opacity: 0;
	position: absolute;
	top: 12px;
	right: 20px;
	cursor: pointer;
}

.arrow-btn {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0px;
	border-radius: 50%;
	border: none;
	background: none;
	cursor: pointer;
}

.left-arrow {
	left: 10px;
}

.right-arrow {
	right: 10px;
	transform: translateY(-50%) rotate(180deg);
}

.index {
	position: absolute;
	bottom: 10px;
	right: 10px;
	font-size: 15px;
	font-weight: 100;
	color: white;
}

.large-image {
	margin-top: 5%;
	width: 80%;
	height: 80%;
	object-fit: contain;
	opacity: 0;
}

.bg-slider {
	background-color: #a9a327;
}
/* #mapapropFooter .powered{
    margin-right: 50px;
}
#mapapropFooter .derechos{
    margin-left: 50px;
} */

#mapapropFooter {
	display: none !important;
}

.none {
	display: none;
}

.bg-callToAction2 {
	background-color: #7aaaad;
}
nav {
	z-index: 9999 !important;
}
/* *{
  border: 1px solid red !important;
} */

.sold {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
}
.sold {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ff0000; /* the main color  */
}
.rented {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
}
.rented {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ff0000; /* the main color  */
}

.suspended {
	font-size: 28px;
	font-weight: bold;
	color: #191919;
}
.suspended {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ffea00; /* the main color  */
}
.reserved {
	font-size: 28px;
	font-weight: bold;
	color: #191919;
}
.reserved {
	--f: 0.5em; /* control the folded part */

	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.8;
	padding-inline: 1lh;
	padding-bottom: var(--f);
	border-image: conic-gradient(#0008 0 0) 51% / var(--f);
	clip-path: polygon(
		100% calc(100% - var(--f)),
		100% 100%,
		calc(100% - var(--f)) calc(100% - var(--f)),
		var(--f) calc(100% - var(--f)),
		0 100%,
		0 calc(100% - var(--f)),
		999px calc(100% - var(--f) - 999px),
		calc(100% - 999px) calc(100% - var(--f) - 999px)
	);
	transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
	transform-origin: 100% 100%;
	background-color: #ffea00; /* the main color  */
}
#imagen-container {
  border-radius: 1rem;         
  overflow: hidden;            
  background-color: transparent;
}

#imagen-container img {
  display: block;
  border-radius: inherit;
  margin: 0;
}

.img-padding {
  padding-top: 0.5rem;   
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  padding-bottom: 0.5rem;
}

